home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / naming / ReferralException.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  606 b   |  25 lines

  1. package javax.naming;
  2.  
  3. import java.util.Hashtable;
  4.  
  5. public abstract class ReferralException extends NamingException {
  6.    private static final long serialVersionUID = -2881363844695698876L;
  7.  
  8.    protected ReferralException(String var1) {
  9.       super(var1);
  10.    }
  11.  
  12.    protected ReferralException() {
  13.    }
  14.  
  15.    public abstract Object getReferralInfo();
  16.  
  17.    public abstract Context getReferralContext() throws NamingException;
  18.  
  19.    public abstract Context getReferralContext(Hashtable<?, ?> var1) throws NamingException;
  20.  
  21.    public abstract boolean skipReferral();
  22.  
  23.    public abstract void retryReferral();
  24. }
  25.